home *** CD-ROM | disk | FTP | other *** search
/ Buffalo Sabres 2001-2002 Promotional CD / Sabres.iso / pc / hilit.dxr / 00039_Exchange QT Movie.ls < prev    next >
Encoding:
Text File  |  2001-09-05  |  1.0 KB  |  41 lines

  1. property pSp, Mem, pSprOfMovie, pThePath, pEventType
  2.  
  3. on getPropertyDescriptionList
  4.   d = [:]
  5.   addProp(d, #pEventType, [#default: "MouseClick", #format: #string, #range: ["MouseClick", "MouseOver", "Automatic"], #comment: "Choose Event Type"])
  6.   addProp(d, #pSprOfMovie, [#default: 1, #format: #integer, #comment: "Sprite Channel of QT Movie"])
  7.   addProp(d, #pThePath, [#default: "QT:", #format: #string, #comment: "The FolderPath & Name"])
  8.   return d
  9. end
  10.  
  11. on prepareFrame me
  12.   if pEventType = "Automatic" then
  13.     path = the moviePath & pThePath
  14.     member(Mem).fileName = path
  15.   end if
  16. end
  17.  
  18. on beginSprite me
  19.   pSp = me.spriteNum
  20.   Mem = the memberNum of sprite pSprOfMovie
  21. end
  22.  
  23. on mouseEnter me
  24.   if pEventType = "MouseOver" then
  25.     path = the moviePath & pThePath
  26.     member(Mem).fileName = path
  27.   end if
  28. end
  29.  
  30. on mouseUp me
  31.   if pEventType = "MouseClick" then
  32.     path = the moviePath & pThePath
  33.     member(Mem).fileName = path
  34.   end if
  35. end
  36.  
  37. on getBehaviorDescription
  38.   description = "Exchange QuickTime Movie."
  39.   return description
  40. end
  41.